home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
djgpp
/
libsrc
/
c
/
dos
/
setdate.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-04
|
230 b
|
12 lines
#include <dos.h>
void setdate( struct date *dateblk)
{
union REGS regs;
regs.h.ah = 0x2b;
regs.x.cx = dateblk-> da_year;
regs.h.dh = dateblk-> da_mon;
regs.h.dl = dateblk-> da_day;
intdos( ®s, ®s);
}